home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass5.m < prev    next >
Encoding:
Text File  |  1992-08-18  |  240 b   |  22 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #include  <stdio.h>
  11.  
  12.  
  13. #include  <SubClass5.h>
  14.  
  15. @implementation SubClass5
  16.  
  17.  
  18. + ( int )return12 { return 12; }
  19. - ( int )return15 { return [ super return15 ]; }
  20.  
  21.  
  22. @end